home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Text⁄Files / Writeswell Jr. 1.0.2 Master / WSI Library Source / Key.h < prev    next >
Text File  |  1991-03-03  |  555b  |  20 lines

  1. /* Key.h
  2.  * Ascii codes for various keys
  3.  * Copyright © 1991 Working Software Inc.  All Rights Reserved.
  4.  * 21 Feb 91 Mike Crawford
  5.  */
  6.  
  7. /* The ascii codes for various keys are listed in IM 1 p. 248 */
  8.  
  9. #define enterKey    ((char)0x03)
  10. #define tabKey        ((char)0x09)    /* TAB key */
  11. #define retKey        ((char)0x0D)    /* Return key */
  12. #define    escKey        ((char)0x1B)    /* Escape key */
  13.  
  14. #define    leftArrow    ((char)0x1C)
  15. #define    rightArrow    ((char)0x1D)
  16. #define    upArrow        ((char)0x1E)
  17. #define    downArrow    ((char)0x1F)
  18. #define backSpace    ((char)0x08)
  19. #define deleteKey    ((char)0x7F)
  20.